crypto/cipher.ofb.outUsed (field)
9 uses
crypto/cipher (current package)
ofb.go#L18: outUsed int
ofb.go#L37: outUsed: 0,
ofb.go#L46: remain := len(x.out) - x.outUsed
ofb.go#L47: if remain > x.outUsed {
ofb.go#L50: copy(x.out, x.out[x.outUsed:])
ofb.go#L58: x.outUsed = 0
ofb.go#L69: if x.outUsed >= len(x.out)-x.b.BlockSize() {
ofb.go#L72: n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
ofb.go#L75: x.outUsed += n
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |